This article contains case-studies illustrating the benefits of implementing workflows with CoRC. Example code to get started can be found in the tutorial articles on model entitiy management, task management and model building.
library(tidyverse)
library(parallel)
library(CoRC)
# helper to run tasks in parallel on all cores
mapInParallel <- function(data, fun, ..., .export = character(), .prep = {}) {
cl <- makeCluster(detectCores())
clusterExport(cl = cl, .export)
clusterCall(cl = cl, fun = eval, .prep, env = .GlobalEnv)
result <- parLapplyLB(cl = cl, X = data, fun = as_mapper(fun), ..., chunk.size = 50)
stopCluster(cl)
result
}This example loads the Kummer2000 - Oscillations in Calcium Signalling model. The model has 3 species which oscillate. These oscialltions can be visualized as a trajectory through a 3D space. The example does this once in a deterministic and once in a stochatic fashion.
loadSBML("https://www.ebi.ac.uk/biomodels/model/download/BIOMD0000000329?filename=BIOMD0000000329_url.xml")
#> # A COPASI model reference:
#> Model name: "Kummer2000 - Oscillations in Calcium Signalling"
#> Number of compartments: 1
#> Number of species: 3
#> Number of reactions: 8
# Run 24 sec (2 Periods)
setTimeCourseSettings(duration = 24, intervals = 10000)
timeseries <- list(
deterministic = runTimeCourse()$result,
stochastic = runTimeCourse(method = list(method = "directMethod", use_random_seed = TRUE, random_seed = 1))$result
)
# Create the same plot for both timeseries
plots <- map(
timeseries,
plotly::plot_ly,
type = "scatter3d",
mode = "lines",
x = ~ `G-alpha`,
y = ~ activePLC,
z = ~ Calcium,
color = ~ Time
)
unloadModel()
plots$deterministicThis implements an example from the Condor-COPASI paper. The example illustrates advantages of parallel processing.
# Run 1000 stochastic time series possibly in parallel
loadModel("https://raw.githubusercontent.com/copasi/condor-copasi/master/examples/stochastic_test.cps")
#> # A COPASI model reference:
#> Model name: "Kummer calcium model"
#> Number of compartments: 1
#> Number of species: 3
#> Number of reactions: 8
setTimeCourseSettings(method = list(method = "directMethod", use_random_seed = TRUE))
model_string <- saveModelToString()
# timeseries <- 1:1000 %>% map(~ runTimeCourse(method = list(random_seed = .x))$result)
timeseries <-
# Defines parallel evaluation:
mapInParallel(
# export the model to the workers
.export = "model_string",
# prepare worker for the task
.prep = quote({
library(CoRC)
loadModelFromString(model_string)
}),
# iteration data (1000 random seeds)
1:1000,
# iteration function using the seed values
function(seed) runTimeCourse(method = list(random_seed = seed))$result
)
# Combine all results and reshape the data
plotdata <-
timeseries %>%
bind_rows() %>%
group_by(Time) %>%
# calculate mean and sd for all time points
summarise(across(everything(), list(mean = mean, sd = sd)), .groups = "drop") %>%
# gather all values so the column `name` identifies "a_mean", "b_sd" etc.
pivot_longer(-Time) %>%
# split up information on species (a,b,c) and type of value (mean, sd)
separate(name, c("species", "type"), "_") %>%
pivot_wider(names_from = type, values_from = value)
print(plotdata, n = 6)
#> # A tibble: 2,403 x 4
#> Time species mean sd
#> <dbl> <chr> <dbl> <dbl>
#> 1 0 a 8.00 0
#> 2 0 b 8.00 0
#> 3 0 c 8.00 0
#> 4 0.05 a 7.06 0.249
#> 5 0.05 b 8.12 0.117
#> 6 0.05 c 5.60 0.442
#> # … with 2,397 more rows
plot <-
ggplot(data = plotdata, aes(x = Time, y = mean, group = species, tt_sd = sd)) +
geom_ribbon(aes(ymin = mean - sd, ymax = mean + sd, fill = species), alpha = 1 / 4) +
geom_line(aes(color = species)) +
guides(fill = "none") +
labs(
x = paste0("Time (", getTimeUnit(), ")"),
y = paste0("Concentration (", getQuantityUnit(), ")"),
color = "Species"
)
unloadModel()
plotly::ggplotly(plot, tooltip = c("group", "x", "y", "tt_sd"))This implements an example from the Mendes2009 paper on COPASI use cases.
loadSBML("https://www.ebi.ac.uk/biomodels/model/download/BIOMD0000000068.2?filename=BIOMD0000000068_url.xml")
#> # A COPASI model reference:
#> Model name: "Curien2003_MetThr_synthesis"
#> Number of compartments: 1
#> Number of species: 9
#> Number of reactions: 3
setSteadyStateSettings(calculate_jacobian = FALSE, perform_stability_analysis = FALSE)
# Cartesian product of the input values
scan <- cross_df(
list(
cysteine = 0.3 * 10 ^ seq(0, 3, length.out = 6),
adomed = seq(0, 100, length.out = 51)
)
)
print(scan, n = 6)
#> # A tibble: 306 x 2
#> cysteine adomed
#> <dbl> <dbl>
#> 1 0.3 0
#> 2 1.19 0
#> 3 4.75 0
#> 4 18.9 0
#> 5 75.4 0
#> 6 300 0
#> # … with 300 more rows
scan <-
scan %>%
rowwise() %>%
mutate(
# Calculate steady state fluxes for every row
ss_fluxes = {
setSpecies("Cysteine", initial_concentration = cysteine)
setSpecies("adenosyl", initial_concentration = adomed)
ss <- runSteadyState()
stopifnot(ss$result == "found")
list(ss$reactions$flux)
},
# The second flux is CGS
CGS = ss_fluxes[2],
# The third flux is TS
TS = ss_fluxes[3]
)
plot <-
ggplot(data = scan, aes(x = adomed, group = cysteine)) +
geom_point(aes(y = CGS, color = "CGS")) +
geom_point(aes(y = TS, color = "TS")) +
geom_line(aes(y = CGS, color = "CGS")) +
geom_line(aes(y = TS, color = "TS")) +
labs(
x = paste0("Adomed (", getQuantityUnit(), ")"),
y = paste0("Flux (", getQuantityUnit(), " / ", getTimeUnit(), ")"),
color = "Species"
)
unloadModel()
plotly::ggplotly(plot)This implements an example from the Mendes2009 paper on COPASI use cases. It is in many ways similar to the previous example but is written to run parallelized.
loadSBML("https://www.ebi.ac.uk/biomodels/model/download/BIOMD0000000068.2?filename=BIOMD0000000068_url.xml")
#> # A COPASI model reference:
#> Model name: "Curien2003_MetThr_synthesis"
#> Number of compartments: 1
#> Number of species: 9
#> Number of reactions: 3
setSteadyStateSettings(calculate_jacobian = FALSE, perform_stability_analysis = FALSE)
model_string <- saveModelToString()
# 10000 repeats of steady state task with random cysteine and adomed
scan <-
# Defines parallel evaluation:
mapInParallel(
# export the model to the workers
.export = "model_string",
# prepare worker for the task
.prep = quote({
library(CoRC)
loadModelFromString(model_string)
}),
# iteration data (10000 random seeds)
1:10000,
# iteration function using the seed values
function(seed) {
set.seed(seed)
cysteine <- 0.3 * 10 ^ runif(1L, min = 0, max = 3)
adomed <- runif(1L, min = 0, max = 100)
setSpecies(
key = c("Cysteine", "adenosyl"),
initial_concentration = c(cysteine, adomed)
)
ss <- runSteadyState()
stopifnot(ss$result == "found")
list(
cysteine = cysteine,
adomed = adomed,
CGS = ss$reactions$flux[2],
TS = ss$reactions$flux[3]
)
}
)
# Combine all results and reshape the data
plotdata <-
scan %>%
bind_rows() %>%
pivot_longer(c(CGS, TS), names_to = "reaction", values_to = "flux")
plot <-
ggplot(data = plotdata, aes(x = adomed, y = flux, group = reaction, tt_cys = cysteine)) +
geom_point(aes(color = reaction), alpha = 1 / 10, size = 3 / 4) +
labs(
x = paste0("Adomed (", getQuantityUnit(), ")"),
y = paste0("Flux (", getQuantityUnit(), " / ", getTimeUnit(), ")"),
color = "Species"
)
unloadModel()
plotly::ggplotly(plot, tooltip = c("tt_cys", "x", "y"))This implements an example from the Mendes2009 paper on COPASI use cases.
loadSBML("https://www.ebi.ac.uk/biomodels/model/download/BIOMD0000000010.2?filename=BIOMD0000000010_url.xml")
#> # A COPASI model reference:
#> Model name: "Kholodenko2000 - Ultrasensitivity and negative feedback bring oscillations in MAPK cascade"
#> Number of compartments: 1
#> Number of species: 8
#> Number of reactions: 10
# get timeseries for the record
data_before <- runTimeCourse(duration = 1000, dt = 1)$result
# read experimental data
data_experimental <-
read_tsv("data/MAPKdata.txt") %>%
rename(Time = time, `Mos-P` = "MAPKKK-P", `Erk2-P` = "MAPK-P")
# define the experiments for COPASI
fit_experiments <- defineExperiments(
data = data_experimental,
type = c("time", "dependent", "dependent"),
mapping = c(NA, "{[Mos-P]}", "{[Erk2-P]}"),
weight_method = "mean_square"
)
# find all reaction rates, which are reaction parameters named .V*
v_params <- parameter(regex("\\.V\\d+$"))
v_params
#> [1] "(MAPKKK activation).V1" "(MAPKKK inactivation).V2"
#> [3] "(dephosphorylation of MAPKK-PP).V5" "(dephosphorylation of MAPKK-P).V6"
#> [5] "(dephosphorylation of MAPK-PP).V9" "(dephosphorylation of MAPK-P).V10"
# define the parameters for COPASI, with start values and bounds
fit_parameters <- map(v_params, function(param) {
val <- getParameters(param)$value
defineParameterEstimationParameter(
ref = parameter(param, "Value"),
start_value = val,
lower_bound = val * 0.1,
upper_bound = val * 1.9)
})
result <-
runParameterEstimation(
parameters = fit_parameters,
experiments = fit_experiments,
method = list(
method = "LevenbergMarquardt",
log_verbosity = 2
),
update_model = TRUE
)
# get timeseries for the record
data_after <- runTimeCourse(duration = 1000, dt = 1)$result
plots <- list(
`Erk2-P` =
ggplot(mapping = aes(x = Time, y = `Erk2-P`)) +
geom_point(data = data_experimental, aes(color = "experimental")) +
geom_line(data = data_before, aes(color = "before")) +
geom_line(data = data_after, aes(color = "after")) +
scale_color_manual(values = c(before = "red", after = "green", experimental = "black")) +
labs(
x = paste0("Time (", getTimeUnit(), ")"),
y = paste0("Erk2-P (", getQuantityUnit(), ")"),
color = "Series"
),
`Mos-P` =
ggplot(mapping = aes(x = Time, y = `Mos-P`)) +
geom_point(data = data_experimental, aes(color = "experimental")) +
geom_line(data = data_before, aes(color = "before")) +
geom_line(data = data_after, aes(color = "after")) +
scale_color_manual(values = c(before = "red", after = "green", experimental = "black")) +
labs(
x = paste0("Time (", getTimeUnit(), ")"),
y = paste0("Mos-P (", getQuantityUnit(), ")"),
color = "Series"
)
)
unloadModel()
result$fitted_values
#> # A tibble: 2 x 5
#> fitted_value objective_value root_mean_square error_mean error_mean_std_devia…
#> <chr> <dbl> <dbl> <dbl> <dbl>
#> 1 [Mos-P] 0.0400 0.0632 -0.0136 0.0618
#> 2 [Erk2-P] 0.0191 0.0438 0.00395 0.0436
result$parameters
#> # A tibble: 6 x 8
#> parameter lower_bound start_value value upper_bound std_deviation
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 (MAPKKK activation).V1 0.25 2.5 2.40 4.75 0.138
#> 2 (MAPKKK inactivation)… 0.025 0.25 0.243 0.475 0.00823
#> 3 (dephosphorylation of… 0.075 0.75 0.723 1.42 0.101
#> 4 (dephosphorylation of… 0.075 0.75 1.42 1.42 0.483
#> 5 (dephosphorylation of… 0.05 0.5 0.788 0.95 0.0825
#> 6 (dephosphorylation of… 0.05 0.5 0.800 0.95 0.105
#> # … with 2 more variables: coeff_of_variation <dbl>, gradient <dbl>
result$protocol
#> [1] "2021-05-20T11:15:26: Levenberg-Marquardt algorithm started\nFor more information about this method see: http://copasi.org/Support/User_Manual/Methods/Optimization_Methods/Levenberg_-_Marquardt/\n\n2021-05-20T11:15:26: niter=0, f=0.133375, fbest=0.362073\nposition: x[0]=2.5002 x[1]=0.250512 x[2]=0.79622 x[3]=1.27724 x[4]=0.510028 x[5]=0.530554 \n\n2021-05-20T11:15:26: niter=1, f=0.101662, fbest=0.133375\nposition: x[0]=2.5665 x[1]=0.247137 x[2]=0.793681 x[3]=1.37071 x[4]=0.529809 x[5]=0.551141 \n\n2021-05-20T11:15:26: niter=2, f=0.0886995, fbest=0.101662\nposition: x[0]=2.59274 x[1]=0.244613 x[2]=0.785247 x[3]=1.425 x[4]=0.55935 x[5]=0.578611 \n\n2021-05-20T11:15:26: niter=3, f=0.0863591, fbest=0.0886995\nposition: x[0]=2.56712 x[1]=0.24303 x[2]=0.764263 x[3]=1.425 x[4]=0.603738 x[5]=0.617848 \n\n2021-05-20T11:15:26: niter=4, f=0.0973451, fbest=0.0863591\nposition: x[0]=2.51342 x[1]=0.242909 x[2]=0.722769 x[3]=1.425 x[4]=0.660412 x[5]=0.663573 \n\n2021-05-20T11:15:26: Iteration 3: Restarting iteration with increased lambda.\nLambda = 0.25\n\n2021-05-20T11:15:26: niter=4, f=0.0808654, fbest=0.0863591\nposition: x[0]=2.53611 x[1]=0.242749 x[2]=0.758572 x[3]=1.425 x[4]=0.624657 x[5]=0.635394 \n\n2021-05-20T11:15:26: niter=5, f=0.0795207, fbest=0.0808654\nposition: x[0]=2.5079 x[1]=0.242497 x[2]=0.742334 x[3]=1.425 x[4]=0.65933 x[5]=0.666558 \n\n2021-05-20T11:15:26: niter=6, f=0.090115, fbest=0.0795207\nposition: x[0]=2.48123 x[1]=0.243318 x[2]=0.709154 x[3]=1.425 x[4]=0.703761 x[5]=0.704162 \n\n2021-05-20T11:15:26: Iteration 5: Restarting iteration with increased lambda.\nLambda = 0.25\n\n2021-05-20T11:15:26: niter=6, f=0.0734357, fbest=0.0795207\nposition: x[0]=2.48631 x[1]=0.242714 x[2]=0.739743 x[3]=1.425 x[4]=0.676333 x[5]=0.683047 \n\n2021-05-20T11:15:26: niter=7, f=0.0642052, fbest=0.0734357\nposition: x[0]=2.44629 x[1]=0.242989 x[2]=0.748848 x[3]=1.42068 x[4]=0.707325 x[5]=0.719177 \n\n2021-05-20T11:15:26: niter=8, f=0.0723539, fbest=0.0642052\nposition: x[0]=2.45245 x[1]=0.242588 x[2]=0.716467 x[3]=1.425 x[4]=0.736702 x[5]=0.741236 \n\n2021-05-20T11:15:26: Iteration 7: Restarting iteration with increased lambda.\nLambda = 0.25\n\n2021-05-20T11:15:26: niter=8, f=0.063741, fbest=0.0642052\nposition: x[0]=2.45302 x[1]=0.242228 x[2]=0.740468 x[3]=1.425 x[4]=0.717958 x[5]=0.72892 \n\n2021-05-20T11:15:26: niter=9, f=0.0657171, fbest=0.063741\nposition: x[0]=2.44261 x[1]=0.243001 x[2]=0.731323 x[3]=1.425 x[4]=0.724576 x[5]=0.720199 \n\n2021-05-20T11:15:26: Iteration 8: Restarting iteration with increased lambda.\nLambda = 0.5\n\n2021-05-20T11:15:26: niter=9, f=0.0633873, fbest=0.063741\nposition: x[0]=2.44349 x[1]=0.242331 x[2]=0.739654 x[3]=1.425 x[4]=0.720887 x[5]=0.726755 \n\n2021-05-20T11:15:26: niter=10, f=0.0640526, fbest=0.0633873\nposition: x[0]=2.44231 x[1]=0.242085 x[2]=0.733355 x[3]=1.425 x[4]=0.729408 x[5]=0.737093 \n\n2021-05-20T11:15:26: Iteration 9: Restarting iteration with increased lambda.\nLambda = 1\n\n2021-05-20T11:15:26: niter=10, f=0.0629002, fbest=0.0633873\nposition: x[0]=2.43998 x[1]=0.242302 x[2]=0.739291 x[3]=1.425 x[4]=0.722741 x[5]=0.731441 \n\n2021-05-20T11:15:26: niter=11, f=0.0628105, fbest=0.0629002\nposition: x[0]=2.43901 x[1]=0.242168 x[2]=0.737058 x[3]=1.425 x[4]=0.72775 x[5]=0.73706 \n\n2021-05-20T11:15:26: niter=12, f=0.0635528, fbest=0.0628105\nposition: x[0]=2.43776 x[1]=0.242072 x[2]=0.731136 x[3]=1.425 x[4]=0.736738 x[5]=0.744659 \n\n2021-05-20T11:15:26: Iteration 11: Restarting iteration with increased lambda.\nLambda = 1\n\n2021-05-20T11:15:26: niter=12, f=0.062301, fbest=0.0628105\nposition: x[0]=2.43528 x[1]=0.242232 x[2]=0.737032 x[3]=1.425 x[4]=0.730437 x[5]=0.74021 \n\n2021-05-20T11:15:26: niter=13, f=0.06151, fbest=0.062301\nposition: x[0]=2.42389 x[1]=0.242474 x[2]=0.736579 x[3]=1.425 x[4]=0.735453 x[5]=0.746241 \n\n2021-05-20T11:15:26: niter=14, f=0.062464, fbest=0.06151\nposition: x[0]=2.43084 x[1]=0.242133 x[2]=0.730002 x[3]=1.425 x[4]=0.743883 x[5]=0.752441 \n\n2021-05-20T11:15:26: Iteration 13: Restarting iteration with increased lambda.\nLambda = 1\n\n2021-05-20T11:15:26: niter=14, f=0.0614487, fbest=0.06151\nposition: x[0]=2.426 x[1]=0.242341 x[2]=0.735561 x[3]=1.425 x[4]=0.738057 x[5]=0.748539 \n\n2021-05-20T11:15:26: niter=15, f=0.0615996, fbest=0.0614487\nposition: x[0]=2.42809 x[1]=0.242181 x[2]=0.733094 x[3]=1.425 x[4]=0.742602 x[5]=0.752312 \n\n2021-05-20T11:15:26: Iteration 14: Restarting iteration with increased lambda.\nLambda = 2\n\n2021-05-20T11:15:26: niter=15, f=0.0613326, fbest=0.0614487\nposition: x[0]=2.42522 x[1]=0.242344 x[2]=0.735526 x[3]=1.425 x[4]=0.739361 x[5]=0.749916 \n\n2021-05-20T11:15:26: niter=16, f=0.0612663, fbest=0.0613326\nposition: x[0]=2.42566 x[1]=0.242273 x[2]=0.734719 x[3]=1.425 x[4]=0.741762 x[5]=0.752188 \n\n2021-05-20T11:15:26: niter=17, f=0.0613354, fbest=0.0612663\nposition: x[0]=2.42548 x[1]=0.242072 x[2]=0.732783 x[3]=1.425 x[4]=0.746105 x[5]=0.755998 \n\n2021-05-20T11:15:26: Iteration 16: Restarting iteration with increased lambda.\nLambda = 2\n\n2021-05-20T11:15:26: niter=17, f=0.0611231, fbest=0.0612663\nposition: x[0]=2.42405 x[1]=0.24227 x[2]=0.734832 x[3]=1.425 x[4]=0.742973 x[5]=0.753599 \n\n2021-05-20T11:15:26: niter=18, f=0.0611332, fbest=0.0611231\nposition: x[0]=2.42445 x[1]=0.242586 x[2]=0.738195 x[3]=1.425 x[4]=0.74427 x[5]=0.75398 \n\n2021-05-20T11:15:26: Iteration 17: Restarting iteration with increased lambda.\nLambda = 4\n\n2021-05-20T11:15:26: niter=18, f=0.0610304, fbest=0.0611231\nposition: x[0]=2.42401 x[1]=0.242353 x[2]=0.735835 x[3]=1.425 x[4]=0.743225 x[5]=0.753728 \n\n2021-05-20T11:15:26: niter=19, f=0.060972, fbest=0.0610304\nposition: x[0]=2.42393 x[1]=0.242312 x[2]=0.735478 x[3]=1.425 x[4]=0.744263 x[5]=0.755108 \n\n2021-05-20T11:15:26: niter=20, f=0.0607807, fbest=0.060972\nposition: x[0]=2.42058 x[1]=0.24227 x[2]=0.736038 x[3]=1.4245 x[4]=0.747042 x[5]=0.758117 \n\n2021-05-20T11:15:26: niter=21, f=0.0609115, fbest=0.0607807\nposition: x[0]=2.42404 x[1]=0.242051 x[2]=0.73286 x[3]=1.425 x[4]=0.750696 x[5]=0.761039 \n\n2021-05-20T11:15:26: Iteration 20: Restarting iteration with increased lambda.\nLambda = 2\n\n2021-05-20T11:15:26: niter=21, f=0.0607195, fbest=0.0607807\nposition: x[0]=2.42117 x[1]=0.242209 x[2]=0.735495 x[3]=1.425 x[4]=0.747994 x[5]=0.759225 \n\n2021-05-20T11:15:26: niter=22, f=0.0606897, fbest=0.0607195\nposition: x[0]=2.42207 x[1]=0.242127 x[2]=0.734386 x[3]=1.425 x[4]=0.74987 x[5]=0.76111 \n\n2021-05-20T11:15:26: niter=23, f=0.0606707, fbest=0.0606897\nposition: x[0]=2.41507 x[1]=0.24247 x[2]=0.733971 x[3]=1.425 x[4]=0.749914 x[5]=0.758964 \n\n2021-05-20T11:15:26: niter=24, f=0.0615959, fbest=0.0606707\nposition: x[0]=2.42302 x[1]=0.242114 x[2]=0.727208 x[3]=1.425 x[4]=0.755863 x[5]=0.764318 \n\n2021-05-20T11:15:26: Iteration 23: Restarting iteration with increased lambda.\nLambda = 1\n\n2021-05-20T11:15:26: niter=24, f=0.0606139, fbest=0.0606707\nposition: x[0]=2.41778 x[1]=0.242294 x[2]=0.73261 x[3]=1.425 x[4]=0.751391 x[5]=0.761404 \n\n2021-05-20T11:15:26: niter=25, f=0.0651115, fbest=0.0606139\nposition: x[0]=2.42073 x[1]=0.245076 x[2]=0.733967 x[3]=1.425 x[4]=0.760527 x[5]=0.766393 \n\n2021-05-20T11:15:26: Iteration 24: Restarting iteration with increased lambda.\nLambda = 2\n\n2021-05-20T11:15:26: niter=25, f=0.0608312, fbest=0.0606139\nposition: x[0]=2.4175 x[1]=0.243252 x[2]=0.733139 x[3]=1.425 x[4]=0.753576 x[5]=0.762914 \n\n2021-05-20T11:15:26: Iteration 24: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=25, f=0.0605405, fbest=0.0606139\nposition: x[0]=2.41751 x[1]=0.242561 x[2]=0.732779 x[3]=1.425 x[4]=0.751847 x[5]=0.761836 \n\n2021-05-20T11:15:26: niter=26, f=0.0607205, fbest=0.0605405\nposition: x[0]=2.41808 x[1]=0.243172 x[2]=0.73294 x[3]=1.425 x[4]=0.75221 x[5]=0.762558 \n\n2021-05-20T11:15:26: Iteration 25: Restarting iteration with increased lambda.\nLambda = 16\n\n2021-05-20T11:15:26: niter=26, f=0.0605467, fbest=0.0605405\nposition: x[0]=2.41763 x[1]=0.24273 x[2]=0.732814 x[3]=1.425 x[4]=0.751939 x[5]=0.762103 \n\n2021-05-20T11:15:26: Iteration 25: Restarting iteration with increased lambda.\nLambda = 64\n\n2021-05-20T11:15:26: niter=26, f=0.0605389, fbest=0.0605405\nposition: x[0]=2.41754 x[1]=0.242605 x[2]=0.732787 x[3]=1.425 x[4]=0.75187 x[5]=0.76191 \n\n2021-05-20T11:15:26: niter=27, f=0.0605321, fbest=0.0605389\nposition: x[0]=2.41753 x[1]=0.242602 x[2]=0.732788 x[3]=1.425 x[4]=0.751917 x[5]=0.762056 \n\n2021-05-20T11:15:26: niter=28, f=0.0605226, fbest=0.0605321\nposition: x[0]=2.41703 x[1]=0.2426 x[2]=0.732754 x[3]=1.425 x[4]=0.75187 x[5]=0.762262 \n\n2021-05-20T11:15:26: niter=29, f=0.0604987, fbest=0.0605226\nposition: x[0]=2.4169 x[1]=0.242586 x[2]=0.732681 x[3]=1.425 x[4]=0.752047 x[5]=0.762831 \n\n2021-05-20T11:15:26: niter=30, f=0.0604545, fbest=0.0604987\nposition: x[0]=2.41766 x[1]=0.24256 x[2]=0.732553 x[3]=1.425 x[4]=0.753202 x[5]=0.763678 \n\n2021-05-20T11:15:26: niter=31, f=0.0604111, fbest=0.0604545\nposition: x[0]=2.41722 x[1]=0.24253 x[2]=0.732412 x[3]=1.425 x[4]=0.754083 x[5]=0.764486 \n\n2021-05-20T11:15:26: niter=32, f=0.0604049, fbest=0.0604111\nposition: x[0]=2.41869 x[1]=0.242392 x[2]=0.731224 x[3]=1.425 x[4]=0.755617 x[5]=0.76649 \n\n2021-05-20T11:15:26: niter=33, f=0.0601477, fbest=0.0604049\nposition: x[0]=2.4131 x[1]=0.242507 x[2]=0.731925 x[3]=1.42382 x[4]=0.759497 x[5]=0.771128 \n\n2021-05-20T11:15:26: niter=34, f=0.0610863, fbest=0.0601477\nposition: x[0]=2.41234 x[1]=0.242003 x[2]=0.725674 x[3]=1.425 x[4]=0.760713 x[5]=0.769459 \n\n2021-05-20T11:15:26: Iteration 33: Restarting iteration with increased lambda.\nLambda = 1\n\n2021-05-20T11:15:26: niter=34, f=0.0601167, fbest=0.0601477\nposition: x[0]=2.41204 x[1]=0.242314 x[2]=0.730596 x[3]=1.425 x[4]=0.759673 x[5]=0.771503 \n\n2021-05-20T11:15:26: niter=35, f=0.0603999, fbest=0.0601167\nposition: x[0]=2.4151 x[1]=0.242158 x[2]=0.7278 x[3]=1.425 x[4]=0.762948 x[5]=0.772954 \n\n2021-05-20T11:15:26: Iteration 34: Restarting iteration with increased lambda.\nLambda = 2\n\n2021-05-20T11:15:26: niter=35, f=0.0600887, fbest=0.0601167\nposition: x[0]=2.41212 x[1]=0.242298 x[2]=0.730304 x[3]=1.425 x[4]=0.760714 x[5]=0.772093 \n\n2021-05-20T11:15:26: niter=36, f=0.060109, fbest=0.0600887\nposition: x[0]=2.41335 x[1]=0.24224 x[2]=0.729371 x[3]=1.425 x[4]=0.76249 x[5]=0.773345 \n\n2021-05-20T11:15:26: Iteration 35: Restarting iteration with increased lambda.\nLambda = 4\n\n2021-05-20T11:15:26: niter=36, f=0.0600554, fbest=0.0600887\nposition: x[0]=2.41173 x[1]=0.242311 x[2]=0.730321 x[3]=1.425 x[4]=0.76123 x[5]=0.772536 \n\n2021-05-20T11:15:26: niter=37, f=0.0600207, fbest=0.0600554\nposition: x[0]=2.41412 x[1]=0.242342 x[2]=0.730122 x[3]=1.425 x[4]=0.76393 x[5]=0.77342 \n\n2021-05-20T11:15:26: niter=38, f=0.0599576, fbest=0.0600207\nposition: x[0]=2.4125 x[1]=0.242245 x[2]=0.729519 x[3]=1.425 x[4]=0.765118 x[5]=0.775515 \n\n2021-05-20T11:15:26: niter=39, f=0.0641001, fbest=0.0599576\nposition: x[0]=2.42333 x[1]=0.245876 x[2]=0.72752 x[3]=1.425 x[4]=0.768793 x[5]=0.77723 \n\n2021-05-20T11:15:26: Iteration 38: Restarting iteration with increased lambda.\nLambda = 2\n\n2021-05-20T11:15:26: niter=39, f=0.0605658, fbest=0.0599576\nposition: x[0]=2.41273 x[1]=0.243702 x[2]=0.729515 x[3]=1.425 x[4]=0.766086 x[5]=0.776373 \n\n2021-05-20T11:15:26: Iteration 38: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=39, f=0.0599019, fbest=0.0599576\nposition: x[0]=2.41183 x[1]=0.242687 x[2]=0.729642 x[3]=1.425 x[4]=0.765311 x[5]=0.775858 \n\n2021-05-20T11:15:26: niter=40, f=0.059868, fbest=0.0599019\nposition: x[0]=2.41209 x[1]=0.242639 x[2]=0.729365 x[3]=1.425 x[4]=0.765409 x[5]=0.776581 \n\n2021-05-20T11:15:26: niter=41, f=0.0601178, fbest=0.059868\nposition: x[0]=2.40868 x[1]=0.242876 x[2]=0.731193 x[3]=1.425 x[4]=0.76581 x[5]=0.776768 \n\n2021-05-20T11:15:26: Iteration 40: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=41, f=0.0598836, fbest=0.059868\nposition: x[0]=2.4113 x[1]=0.242678 x[2]=0.729988 x[3]=1.425 x[4]=0.765569 x[5]=0.776702 \n\n2021-05-20T11:15:26: Iteration 40: Restarting iteration with increased lambda.\nLambda = 32\n\n2021-05-20T11:15:26: niter=41, f=0.0598682, fbest=0.059868\nposition: x[0]=2.41194 x[1]=0.242644 x[2]=0.729548 x[3]=1.425 x[4]=0.765461 x[5]=0.776623 \n\n2021-05-20T11:15:26: Iteration 40: Restarting iteration with increased lambda.\nLambda = 128\n\n2021-05-20T11:15:26: niter=41, f=0.0598679, fbest=0.059868\nposition: x[0]=2.41206 x[1]=0.24264 x[2]=0.729413 x[3]=1.425 x[4]=0.765423 x[5]=0.776593 \n\n2021-05-20T11:15:26: niter=42, f=0.0598662, fbest=0.0598679\nposition: x[0]=2.41203 x[1]=0.242641 x[2]=0.729408 x[3]=1.425 x[4]=0.765431 x[5]=0.776643 \n\n2021-05-20T11:15:26: niter=43, f=0.0598627, fbest=0.0598662\nposition: x[0]=2.41199 x[1]=0.242638 x[2]=0.729396 x[3]=1.425 x[4]=0.76545 x[5]=0.776741 \n\n2021-05-20T11:15:26: niter=44, f=0.0598562, fbest=0.0598627\nposition: x[0]=2.41193 x[1]=0.242632 x[2]=0.729367 x[3]=1.425 x[4]=0.765493 x[5]=0.776923 \n\n2021-05-20T11:15:26: niter=45, f=0.0598462, fbest=0.0598562\nposition: x[0]=2.41103 x[1]=0.242635 x[2]=0.72938 x[3]=1.42491 x[4]=0.765711 x[5]=0.777254 \n\n2021-05-20T11:15:26: niter=46, f=0.0598166, fbest=0.0598462\nposition: x[0]=2.41135 x[1]=0.242614 x[2]=0.729162 x[3]=1.425 x[4]=0.766031 x[5]=0.778099 \n\n2021-05-20T11:15:26: niter=47, f=0.059797, fbest=0.0598166\nposition: x[0]=2.40863 x[1]=0.242676 x[2]=0.729051 x[3]=1.42487 x[4]=0.767065 x[5]=0.778771 \n\n2021-05-20T11:15:26: niter=48, f=0.0597845, fbest=0.059797\nposition: x[0]=2.41152 x[1]=0.242501 x[2]=0.727646 x[3]=1.425 x[4]=0.768311 x[5]=0.779958 \n\n2021-05-20T11:15:26: niter=49, f=0.0600814, fbest=0.0597845\nposition: x[0]=2.41367 x[1]=0.242355 x[2]=0.725124 x[3]=1.425 x[4]=0.770805 x[5]=0.781504 \n\n2021-05-20T11:15:26: Iteration 48: Restarting iteration with increased lambda.\nLambda = 2\n\n2021-05-20T11:15:26: niter=49, f=0.0597572, fbest=0.0597845\nposition: x[0]=2.41104 x[1]=0.242492 x[2]=0.727446 x[3]=1.425 x[4]=0.76902 x[5]=0.780726 \n\n2021-05-20T11:15:26: niter=50, f=0.0597899, fbest=0.0597572\nposition: x[0]=2.41127 x[1]=0.242453 x[2]=0.726495 x[3]=1.425 x[4]=0.770531 x[5]=0.781527 \n\n2021-05-20T11:15:26: Iteration 49: Restarting iteration with increased lambda.\nLambda = 4\n\n2021-05-20T11:15:26: niter=50, f=0.0597237, fbest=0.0597572\nposition: x[0]=2.41031 x[1]=0.242508 x[2]=0.727477 x[3]=1.425 x[4]=0.76942 x[5]=0.781136 \n\n2021-05-20T11:15:26: niter=51, f=0.0596962, fbest=0.0597237\nposition: x[0]=2.40857 x[1]=0.242492 x[2]=0.727688 x[3]=1.425 x[4]=0.769254 x[5]=0.781628 \n\n2021-05-20T11:15:26: niter=52, f=0.059629, fbest=0.0596962\nposition: x[0]=2.40142 x[1]=0.242485 x[2]=0.727196 x[3]=1.425 x[4]=0.771931 x[5]=0.781695 \n\n2021-05-20T11:15:26: niter=53, f=0.0598884, fbest=0.059629\nposition: x[0]=2.40729 x[1]=0.242268 x[2]=0.72438 x[3]=1.425 x[4]=0.773958 x[5]=0.783649 \n\n2021-05-20T11:15:26: Iteration 52: Restarting iteration with increased lambda.\nLambda = 2\n\n2021-05-20T11:15:26: niter=53, f=0.0596086, fbest=0.059629\nposition: x[0]=2.40284 x[1]=0.242414 x[2]=0.726685 x[3]=1.425 x[4]=0.772366 x[5]=0.782641 \n\n2021-05-20T11:15:26: niter=54, f=0.059572, fbest=0.0596086\nposition: x[0]=2.40461 x[1]=0.242475 x[2]=0.726783 x[3]=1.425 x[4]=0.773612 x[5]=0.783766 \n\n2021-05-20T11:15:26: niter=55, f=0.0598668, fbest=0.059572\nposition: x[0]=2.40862 x[1]=0.242292 x[2]=0.724067 x[3]=1.425 x[4]=0.775393 x[5]=0.785482 \n\n2021-05-20T11:15:26: Iteration 54: Restarting iteration with increased lambda.\nLambda = 2\n\n2021-05-20T11:15:26: niter=55, f=0.059562, fbest=0.059572\nposition: x[0]=2.40508 x[1]=0.242429 x[2]=0.726381 x[3]=1.425 x[4]=0.77397 x[5]=0.784701 \n\n2021-05-20T11:15:26: niter=56, f=0.0596153, fbest=0.059562\nposition: x[0]=2.40645 x[1]=0.242356 x[2]=0.725409 x[3]=1.425 x[4]=0.775041 x[5]=0.785834 \n\n2021-05-20T11:15:26: Iteration 55: Restarting iteration with increased lambda.\nLambda = 4\n\n2021-05-20T11:15:26: niter=56, f=0.0595441, fbest=0.059562\nposition: x[0]=2.40477 x[1]=0.242432 x[2]=0.726347 x[3]=1.425 x[4]=0.774225 x[5]=0.785195 \n\n2021-05-20T11:15:26: niter=57, f=0.0595376, fbest=0.0595441\nposition: x[0]=2.40503 x[1]=0.242409 x[2]=0.726045 x[3]=1.425 x[4]=0.774807 x[5]=0.785912 \n\n2021-05-20T11:15:26: niter=58, f=0.0595922, fbest=0.0595376\nposition: x[0]=2.40621 x[1]=0.24235 x[2]=0.725127 x[3]=1.425 x[4]=0.775951 x[5]=0.786879 \n\n2021-05-20T11:15:26: Iteration 57: Restarting iteration with increased lambda.\nLambda = 4\n\n2021-05-20T11:15:26: niter=58, f=0.0595162, fbest=0.0595376\nposition: x[0]=2.40461 x[1]=0.24242 x[2]=0.726049 x[3]=1.425 x[4]=0.77511 x[5]=0.786339 \n\n2021-05-20T11:15:26: niter=59, f=0.0595123, fbest=0.0595162\nposition: x[0]=2.40472 x[1]=0.242402 x[2]=0.7258 x[3]=1.425 x[4]=0.775573 x[5]=0.786908 \n\n2021-05-20T11:15:26: niter=60, f=0.0596334, fbest=0.0595123\nposition: x[0]=2.40822 x[1]=0.24243 x[2]=0.724465 x[3]=1.425 x[4]=0.777517 x[5]=0.78723 \n\n2021-05-20T11:15:26: Iteration 59: Restarting iteration with increased lambda.\nLambda = 4\n\n2021-05-20T11:15:26: niter=60, f=0.0594916, fbest=0.0595123\nposition: x[0]=2.40479 x[1]=0.242438 x[2]=0.725753 x[3]=1.425 x[4]=0.776097 x[5]=0.787202 \n\n2021-05-20T11:15:26: niter=61, f=0.0594389, fbest=0.0594916\nposition: x[0]=2.40308 x[1]=0.242422 x[2]=0.726154 x[3]=1.42487 x[4]=0.776914 x[5]=0.788327 \n\n2021-05-20T11:15:26: niter=62, f=0.0594896, fbest=0.0594389\nposition: x[0]=2.40495 x[1]=0.242336 x[2]=0.725053 x[3]=1.425 x[4]=0.777956 x[5]=0.789134 \n\n2021-05-20T11:15:26: Iteration 61: Restarting iteration with increased lambda.\nLambda = 4\n\n2021-05-20T11:15:26: niter=62, f=0.0594271, fbest=0.0594389\nposition: x[0]=2.40311 x[1]=0.242414 x[2]=0.726041 x[3]=1.425 x[4]=0.777179 x[5]=0.788685 \n\n2021-05-20T11:15:26: niter=63, f=0.0594268, fbest=0.0594271\nposition: x[0]=2.40351 x[1]=0.242385 x[2]=0.72567 x[3]=1.425 x[4]=0.777696 x[5]=0.789208 \n\n2021-05-20T11:15:26: niter=64, f=0.0594861, fbest=0.0594268\nposition: x[0]=2.40485 x[1]=0.242325 x[2]=0.724688 x[3]=1.425 x[4]=0.778774 x[5]=0.789942 \n\n2021-05-20T11:15:26: Iteration 63: Restarting iteration with increased lambda.\nLambda = 4\n\n2021-05-20T11:15:26: niter=64, f=0.0594133, fbest=0.0594268\nposition: x[0]=2.40323 x[1]=0.242392 x[2]=0.725632 x[3]=1.425 x[4]=0.777993 x[5]=0.789546 \n\n2021-05-20T11:15:26: niter=65, f=0.0594121, fbest=0.0594133\nposition: x[0]=2.40347 x[1]=0.242375 x[2]=0.725321 x[3]=1.425 x[4]=0.778558 x[5]=0.790055 \n\n2021-05-20T11:15:26: niter=66, f=0.0594718, fbest=0.0594121\nposition: x[0]=2.4046 x[1]=0.242326 x[2]=0.724381 x[3]=1.425 x[4]=0.779608 x[5]=0.790756 \n\n2021-05-20T11:15:26: Iteration 65: Restarting iteration with increased lambda.\nLambda = 4\n\n2021-05-20T11:15:26: niter=66, f=0.0593942, fbest=0.0594121\nposition: x[0]=2.40307 x[1]=0.242388 x[2]=0.725313 x[3]=1.425 x[4]=0.778851 x[5]=0.790392 \n\n2021-05-20T11:15:26: niter=67, f=0.0593567, fbest=0.0593942\nposition: x[0]=2.4005 x[1]=0.242486 x[2]=0.725783 x[3]=1.425 x[4]=0.779493 x[5]=0.790735 \n\n2021-05-20T11:15:26: niter=68, f=0.0593259, fbest=0.0593567\nposition: x[0]=2.39352 x[1]=0.242296 x[2]=0.725241 x[3]=1.425 x[4]=0.78092 x[5]=0.791515 \n\n2021-05-20T11:15:26: niter=69, f=0.0595395, fbest=0.0593259\nposition: x[0]=2.3997 x[1]=0.242128 x[2]=0.722661 x[3]=1.425 x[4]=0.782652 x[5]=0.792495 \n\n2021-05-20T11:15:26: Iteration 68: Restarting iteration with increased lambda.\nLambda = 2\n\n2021-05-20T11:15:26: niter=69, f=0.0593138, fbest=0.0593259\nposition: x[0]=2.39528 x[1]=0.242242 x[2]=0.724755 x[3]=1.425 x[4]=0.78143 x[5]=0.791964 \n\n2021-05-20T11:15:26: niter=70, f=0.0593749, fbest=0.0593138\nposition: x[0]=2.39802 x[1]=0.242178 x[2]=0.723728 x[3]=1.425 x[4]=0.782418 x[5]=0.792609 \n\n2021-05-20T11:15:26: Iteration 69: Restarting iteration with increased lambda.\nLambda = 4\n\n2021-05-20T11:15:26: niter=70, f=0.0593082, fbest=0.0593138\nposition: x[0]=2.39558 x[1]=0.24224 x[2]=0.724662 x[3]=1.425 x[4]=0.781709 x[5]=0.792249 \n\n2021-05-20T11:15:26: niter=71, f=0.0592857, fbest=0.0593082\nposition: x[0]=2.39514 x[1]=0.242277 x[2]=0.72451 x[3]=1.425 x[4]=0.782268 x[5]=0.792989 \n\n2021-05-20T11:15:26: niter=72, f=0.0593469, fbest=0.0592857\nposition: x[0]=2.39799 x[1]=0.242209 x[2]=0.723461 x[3]=1.425 x[4]=0.783251 x[5]=0.793591 \n\n2021-05-20T11:15:26: Iteration 71: Restarting iteration with increased lambda.\nLambda = 4\n\n2021-05-20T11:15:26: niter=72, f=0.059281, fbest=0.0592857\nposition: x[0]=2.3955 x[1]=0.242273 x[2]=0.724403 x[3]=1.425 x[4]=0.782548 x[5]=0.793256 \n\n2021-05-20T11:15:26: niter=73, f=0.0592811, fbest=0.059281\nposition: x[0]=2.39598 x[1]=0.242251 x[2]=0.72406 x[3]=1.425 x[4]=0.783091 x[5]=0.793702 \n\n2021-05-20T11:15:26: Iteration 72: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=73, f=0.0592757, fbest=0.059281\nposition: x[0]=2.39537 x[1]=0.242278 x[2]=0.724398 x[3]=1.425 x[4]=0.782683 x[5]=0.793418 \n\n2021-05-20T11:15:26: niter=74, f=0.0592685, fbest=0.0592757\nposition: x[0]=2.39565 x[1]=0.242278 x[2]=0.724378 x[3]=1.425 x[4]=0.782949 x[5]=0.793754 \n\n2021-05-20T11:15:26: niter=75, f=0.059274, fbest=0.0592685\nposition: x[0]=2.39664 x[1]=0.242256 x[2]=0.724017 x[3]=1.425 x[4]=0.783435 x[5]=0.794168 \n\n2021-05-20T11:15:26: Iteration 74: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=75, f=0.0592641, fbest=0.0592685\nposition: x[0]=2.39564 x[1]=0.242282 x[2]=0.724368 x[3]=1.425 x[4]=0.783081 x[5]=0.793911 \n\n2021-05-20T11:15:26: niter=76, f=0.0592598, fbest=0.0592641\nposition: x[0]=2.3959 x[1]=0.24228 x[2]=0.724267 x[3]=1.425 x[4]=0.783338 x[5]=0.794177 \n\n2021-05-20T11:15:26: niter=77, f=0.0592652, fbest=0.0592598\nposition: x[0]=2.39681 x[1]=0.242261 x[2]=0.723917 x[3]=1.425 x[4]=0.78383 x[5]=0.7946 \n\n2021-05-20T11:15:26: Iteration 76: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=77, f=0.0592547, fbest=0.0592598\nposition: x[0]=2.39586 x[1]=0.242286 x[2]=0.724263 x[3]=1.425 x[4]=0.783472 x[5]=0.794337 \n\n2021-05-20T11:15:26: niter=78, f=0.0592503, fbest=0.0592547\nposition: x[0]=2.39605 x[1]=0.242284 x[2]=0.724168 x[3]=1.425 x[4]=0.783721 x[5]=0.794605 \n\n2021-05-20T11:15:26: niter=79, f=0.0592562, fbest=0.0592503\nposition: x[0]=2.39688 x[1]=0.242266 x[2]=0.723823 x[3]=1.425 x[4]=0.784194 x[5]=0.79502 \n\n2021-05-20T11:15:26: Iteration 78: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=79, f=0.0592451, fbest=0.0592503\nposition: x[0]=2.39599 x[1]=0.24229 x[2]=0.724167 x[3]=1.425 x[4]=0.783849 x[5]=0.794765 \n\n2021-05-20T11:15:26: niter=80, f=0.0592415, fbest=0.0592451\nposition: x[0]=2.39598 x[1]=0.242289 x[2]=0.724113 x[3]=1.425 x[4]=0.784059 x[5]=0.794906 \n\n2021-05-20T11:15:26: niter=81, f=0.0592478, fbest=0.0592415\nposition: x[0]=2.39681 x[1]=0.242268 x[2]=0.72376 x[3]=1.425 x[4]=0.784509 x[5]=0.795331 \n\n2021-05-20T11:15:26: Iteration 80: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=81, f=0.0592365, fbest=0.0592415\nposition: x[0]=2.39591 x[1]=0.242294 x[2]=0.724108 x[3]=1.425 x[4]=0.784178 x[5]=0.795072 \n\n2021-05-20T11:15:26: niter=82, f=0.0592321, fbest=0.0592365\nposition: x[0]=2.39454 x[1]=0.242314 x[2]=0.724133 x[3]=1.425 x[4]=0.784036 x[5]=0.795123 \n\n2021-05-20T11:15:26: niter=83, f=0.0592363, fbest=0.0592321\nposition: x[0]=2.39583 x[1]=0.242282 x[2]=0.723719 x[3]=1.425 x[4]=0.784543 x[5]=0.795453 \n\n2021-05-20T11:15:26: Iteration 82: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=83, f=0.059229, fbest=0.0592321\nposition: x[0]=2.39467 x[1]=0.242314 x[2]=0.724096 x[3]=1.425 x[4]=0.784177 x[5]=0.795246 \n\n2021-05-20T11:15:26: niter=84, f=0.0592256, fbest=0.059229\nposition: x[0]=2.3951 x[1]=0.242305 x[2]=0.723963 x[3]=1.425 x[4]=0.784439 x[5]=0.795464 \n\n2021-05-20T11:15:26: niter=85, f=0.0592321, fbest=0.0592256\nposition: x[0]=2.39615 x[1]=0.242281 x[2]=0.723588 x[3]=1.425 x[4]=0.784923 x[5]=0.795823 \n\n2021-05-20T11:15:26: Iteration 84: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=85, f=0.059222, fbest=0.0592256\nposition: x[0]=2.39513 x[1]=0.242309 x[2]=0.723946 x[3]=1.425 x[4]=0.784573 x[5]=0.795603 \n\n2021-05-20T11:15:26: niter=86, f=0.0592186, fbest=0.059222\nposition: x[0]=2.39542 x[1]=0.242305 x[2]=0.723836 x[3]=1.425 x[4]=0.784823 x[5]=0.795838 \n\n2021-05-20T11:15:26: niter=87, f=0.0592255, fbest=0.0592186\nposition: x[0]=2.39633 x[1]=0.242283 x[2]=0.723479 x[3]=1.425 x[4]=0.785288 x[5]=0.796209 \n\n2021-05-20T11:15:26: Iteration 86: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=87, f=0.0592144, fbest=0.0592186\nposition: x[0]=2.39539 x[1]=0.24231 x[2]=0.723828 x[3]=1.425 x[4]=0.78495 x[5]=0.795984 \n\n2021-05-20T11:15:26: niter=88, f=0.0592107, fbest=0.0592144\nposition: x[0]=2.39561 x[1]=0.242308 x[2]=0.723729 x[3]=1.425 x[4]=0.785195 x[5]=0.796228 \n\n2021-05-20T11:15:26: niter=89, f=0.0592178, fbest=0.0592107\nposition: x[0]=2.39643 x[1]=0.242289 x[2]=0.72338 x[3]=1.425 x[4]=0.785645 x[5]=0.7966 \n\n2021-05-20T11:15:26: Iteration 88: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=89, f=0.0592061, fbest=0.0592107\nposition: x[0]=2.39554 x[1]=0.242314 x[2]=0.723726 x[3]=1.425 x[4]=0.785318 x[5]=0.796376 \n\n2021-05-20T11:15:26: niter=90, f=0.0592025, fbest=0.0592061\nposition: x[0]=2.39574 x[1]=0.242314 x[2]=0.723631 x[3]=1.425 x[4]=0.78555 x[5]=0.796622 \n\n2021-05-20T11:15:26: niter=91, f=0.0592096, fbest=0.0592025\nposition: x[0]=2.39648 x[1]=0.242296 x[2]=0.723285 x[3]=1.425 x[4]=0.78599 x[5]=0.796991 \n\n2021-05-20T11:15:26: Iteration 90: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=91, f=0.0591977, fbest=0.0592025\nposition: x[0]=2.39564 x[1]=0.24232 x[2]=0.72363 x[3]=1.425 x[4]=0.785669 x[5]=0.796771 \n\n2021-05-20T11:15:26: niter=92, f=0.0591943, fbest=0.0591977\nposition: x[0]=2.39586 x[1]=0.242317 x[2]=0.723518 x[3]=1.425 x[4]=0.785977 x[5]=0.797003 \n\n2021-05-20T11:15:26: niter=93, f=0.0592014, fbest=0.0591943\nposition: x[0]=2.39654 x[1]=0.242301 x[2]=0.723178 x[3]=1.425 x[4]=0.786384 x[5]=0.797392 \n\n2021-05-20T11:15:26: Iteration 92: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=93, f=0.0591892, fbest=0.0591943\nposition: x[0]=2.39574 x[1]=0.242324 x[2]=0.723519 x[3]=1.425 x[4]=0.786085 x[5]=0.797162 \n\n2021-05-20T11:15:26: niter=94, f=0.0591854, fbest=0.0591892\nposition: x[0]=2.39585 x[1]=0.242325 x[2]=0.723429 x[3]=1.425 x[4]=0.786299 x[5]=0.797415 \n\n2021-05-20T11:15:26: niter=95, f=0.0591929, fbest=0.0591854\nposition: x[0]=2.39655 x[1]=0.242308 x[2]=0.723088 x[3]=1.425 x[4]=0.786713 x[5]=0.797786 \n\n2021-05-20T11:15:26: Iteration 94: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=95, f=0.0591801, fbest=0.0591854\nposition: x[0]=2.39574 x[1]=0.242332 x[2]=0.72343 x[3]=1.425 x[4]=0.78641 x[5]=0.797568 \n\n2021-05-20T11:15:26: niter=96, f=0.0591765, fbest=0.0591801\nposition: x[0]=2.39585 x[1]=0.242332 x[2]=0.723339 x[3]=1.425 x[4]=0.786641 x[5]=0.797815 \n\n2021-05-20T11:15:26: niter=97, f=0.0591845, fbest=0.0591765\nposition: x[0]=2.39653 x[1]=0.242315 x[2]=0.722996 x[3]=1.425 x[4]=0.787046 x[5]=0.798171 \n\n2021-05-20T11:15:26: Iteration 96: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=97, f=0.0591717, fbest=0.0591765\nposition: x[0]=2.39573 x[1]=0.242339 x[2]=0.723339 x[3]=1.425 x[4]=0.78675 x[5]=0.797964 \n\n2021-05-20T11:15:26: niter=98, f=0.0591683, fbest=0.0591717\nposition: x[0]=2.39584 x[1]=0.242339 x[2]=0.723248 x[3]=1.425 x[4]=0.786962 x[5]=0.798204 \n\n2021-05-20T11:15:26: niter=99, f=0.0596604, fbest=0.0591683\nposition: x[0]=2.39567 x[1]=0.243284 x[2]=0.724302 x[3]=1.425 x[4]=0.787216 x[5]=0.798269 \n\n2021-05-20T11:15:26: Iteration 98: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=99, f=0.0591759, fbest=0.0591683\nposition: x[0]=2.39587 x[1]=0.242646 x[2]=0.723432 x[3]=1.425 x[4]=0.787064 x[5]=0.798263 \n\n2021-05-20T11:15:26: Iteration 98: Restarting iteration with increased lambda.\nLambda = 32\n\n2021-05-20T11:15:26: niter=99, f=0.0591587, fbest=0.0591683\nposition: x[0]=2.39587 x[1]=0.242424 x[2]=0.723278 x[3]=1.425 x[4]=0.786996 x[5]=0.798227 \n\n2021-05-20T11:15:26: niter=100, f=0.0591579, fbest=0.0591587\nposition: x[0]=2.39574 x[1]=0.242418 x[2]=0.723268 x[3]=1.425 x[4]=0.787011 x[5]=0.798281 \n\n2021-05-20T11:15:26: niter=101, f=0.0591557, fbest=0.0591579\nposition: x[0]=2.39582 x[1]=0.242418 x[2]=0.723235 x[3]=1.425 x[4]=0.787103 x[5]=0.798416 \n\n2021-05-20T11:15:26: niter=102, f=0.0591543, fbest=0.0591557\nposition: x[0]=2.39609 x[1]=0.242408 x[2]=0.723101 x[3]=1.425 x[4]=0.787274 x[5]=0.798656 \n\n2021-05-20T11:15:26: niter=103, f=0.0591865, fbest=0.0591543\nposition: x[0]=2.39598 x[1]=0.242584 x[2]=0.724126 x[3]=1.425 x[4]=0.787514 x[5]=0.798748 \n\n2021-05-20T11:15:26: Iteration 102: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=103, f=0.0591492, fbest=0.0591543\nposition: x[0]=2.39616 x[1]=0.242439 x[2]=0.723438 x[3]=1.425 x[4]=0.787379 x[5]=0.798722 \n\n2021-05-20T11:15:26: niter=104, f=0.0591469, fbest=0.0591492\nposition: x[0]=2.39639 x[1]=0.242423 x[2]=0.723256 x[3]=1.425 x[4]=0.787451 x[5]=0.79896 \n\n2021-05-20T11:15:26: niter=105, f=0.0591567, fbest=0.0591469\nposition: x[0]=2.39717 x[1]=0.242374 x[2]=0.722862 x[3]=1.425 x[4]=0.787827 x[5]=0.799286 \n\n2021-05-20T11:15:26: Iteration 104: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=105, f=0.0591448, fbest=0.0591469\nposition: x[0]=2.39637 x[1]=0.242418 x[2]=0.723222 x[3]=1.425 x[4]=0.787541 x[5]=0.799103 \n\n2021-05-20T11:15:26: niter=106, f=0.0591397, fbest=0.0591448\nposition: x[0]=2.39659 x[1]=0.242423 x[2]=0.723159 x[3]=1.425 x[4]=0.78779 x[5]=0.799393 \n\n2021-05-20T11:15:26: niter=107, f=0.0591485, fbest=0.0591397\nposition: x[0]=2.39738 x[1]=0.242392 x[2]=0.722748 x[3]=1.425 x[4]=0.788169 x[5]=0.79972 \n\n2021-05-20T11:15:26: Iteration 106: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=107, f=0.059137, fbest=0.0591397\nposition: x[0]=2.39655 x[1]=0.242423 x[2]=0.723129 x[3]=1.425 x[4]=0.787886 x[5]=0.799533 \n\n2021-05-20T11:15:26: niter=108, f=0.0591353, fbest=0.059137\nposition: x[0]=2.3967 x[1]=0.242416 x[2]=0.723 x[3]=1.425 x[4]=0.788065 x[5]=0.799751 \n\n2021-05-20T11:15:26: niter=109, f=0.0591478, fbest=0.0591353\nposition: x[0]=2.39699 x[1]=0.242417 x[2]=0.72277 x[3]=1.425 x[4]=0.787662 x[5]=0.799671 \n\n2021-05-20T11:15:26: Iteration 108: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=109, f=0.0591336, fbest=0.0591353\nposition: x[0]=2.39647 x[1]=0.242422 x[2]=0.722997 x[3]=1.425 x[4]=0.787975 x[5]=0.799848 \n\n2021-05-20T11:15:26: niter=110, f=0.0592914, fbest=0.0591336\nposition: x[0]=2.39692 x[1]=0.243131 x[2]=0.722901 x[3]=1.425 x[4]=0.788143 x[5]=0.800076 \n\n2021-05-20T11:15:26: Iteration 109: Restarting iteration with increased lambda.\nLambda = 16\n\n2021-05-20T11:15:26: niter=110, f=0.0591317, fbest=0.0591336\nposition: x[0]=2.39657 x[1]=0.242629 x[2]=0.722975 x[3]=1.425 x[4]=0.787999 x[5]=0.799907 \n\n2021-05-20T11:15:26: niter=111, f=0.059134, fbest=0.0591317\nposition: x[0]=2.39574 x[1]=0.242624 x[2]=0.72292 x[3]=1.425 x[4]=0.788083 x[5]=0.799738 \n\n2021-05-20T11:15:26: Iteration 110: Restarting iteration with increased lambda.\nLambda = 32\n\n2021-05-20T11:15:26: niter=111, f=0.0591322, fbest=0.0591317\nposition: x[0]=2.39635 x[1]=0.242627 x[2]=0.722958 x[3]=1.425 x[4]=0.788012 x[5]=0.799863 \n\n2021-05-20T11:15:26: Iteration 110: Restarting iteration with increased lambda.\nLambda = 128\n\n2021-05-20T11:15:26: niter=111, f=0.059132, fbest=0.0591317\nposition: x[0]=2.39652 x[1]=0.242628 x[2]=0.72297 x[3]=1.425 x[4]=0.788001 x[5]=0.799896 \n\n2021-05-20T11:15:26: Iteration 110: Restarting iteration with increased lambda.\nLambda = 512\n\n2021-05-20T11:15:26: niter=111, f=0.0591317, fbest=0.0591317\nposition: x[0]=2.39656 x[1]=0.242628 x[2]=0.722974 x[3]=1.425 x[4]=0.788 x[5]=0.799904 \n\n2021-05-20T11:15:26: Iteration 110: Restarting iteration with increased lambda.\nLambda = 2048\n\n2021-05-20T11:15:26: niter=111, f=0.0591317, fbest=0.0591317\nposition: x[0]=2.39657 x[1]=0.242629 x[2]=0.722975 x[3]=1.425 x[4]=0.787999 x[5]=0.799906 \n\n2021-05-20T11:15:26: Iteration 110: Restarting iteration with increased lambda.\nLambda = 8192\n\n2021-05-20T11:15:26: niter=111, f=0.0591318, fbest=0.0591317\nposition: x[0]=2.39657 x[1]=0.242629 x[2]=0.722975 x[3]=1.425 x[4]=0.787999 x[5]=0.799907 \n\n2021-05-20T11:15:26: Iteration 110: Restarting iteration with increased lambda.\nLambda = 32768\n\n2021-05-20T11:15:26: niter=111, f=0.0591319, fbest=0.0591317\nposition: x[0]=2.39657 x[1]=0.242629 x[2]=0.722975 x[3]=1.425 x[4]=0.787999 x[5]=0.799907 \n\n2021-05-20T11:15:26: Iteration 110: Restarting iteration with increased lambda.\nLambda = 131072\n\n2021-05-20T11:15:26: niter=111, f=0.0591317, fbest=0.0591317\nposition: x[0]=2.39657 x[1]=0.242629 x[2]=0.722975 x[3]=1.425 x[4]=0.787999 x[5]=0.799907 \n\n2021-05-20T11:15:26: Iteration 110: Restarting iteration with increased lambda.\nLambda = 524288\n\n2021-05-20T11:15:26: niter=111, f=0.0591317, fbest=0.0591317\nposition: x[0]=2.39657 x[1]=0.242629 x[2]=0.722975 x[3]=1.425 x[4]=0.787999 x[5]=0.799907 \n\n2021-05-20T11:15:26: Iteration 110: Restarting iteration with increased lambda.\nLambda = 2.09715e+06\n\n2021-05-20T11:15:26: niter=111, f=0.0591317, fbest=0.0591317\nposition: x[0]=2.39657 x[1]=0.242629 x[2]=0.722975 x[3]=1.425 x[4]=0.787999 x[5]=0.799907 \n\n2021-05-20T11:15:26: Iteration 110: Restarting iteration with increased lambda.\nLambda = 8.38861e+06\n\n2021-05-20T11:15:26: niter=111, f=0.0591317, fbest=0.0591317\nposition: x[0]=2.39657 x[1]=0.242629 x[2]=0.722975 x[3]=1.425 x[4]=0.787999 x[5]=0.799907 \n\n2021-05-20T11:15:26: Iteration 110: Restarting iteration with increased lambda.\nLambda = 3.35544e+07\n\n2021-05-20T11:15:26: niter=111, f=0.0591319, fbest=0.0591317\nposition: x[0]=2.39657 x[1]=0.242629 x[2]=0.722975 x[3]=1.425 x[4]=0.787999 x[5]=0.799907 \n\n2021-05-20T11:15:26: Iteration 110: Restarting iteration with increased lambda.\nLambda = 1.34218e+08\n\n2021-05-20T11:15:26: niter=111, f=0.0591317, fbest=0.0591317\nposition: x[0]=2.39657 x[1]=0.242629 x[2]=0.722975 x[3]=1.425 x[4]=0.787999 x[5]=0.799907 \n\n2021-05-20T11:15:26: Iteration 111: Objective function value and parameter change lower than tolerance (1/3). Resetting lambda.\n\n2021-05-20T11:15:26: niter=112, f=0.0591887, fbest=0.0591317\nposition: x[0]=2.39151 x[1]=0.242668 x[2]=0.722627 x[3]=1.425 x[4]=0.789447 x[5]=0.798681 \n\n2021-05-20T11:15:26: Iteration 111: Restarting iteration with increased lambda.\nLambda = 4\n\n2021-05-20T11:15:26: niter=112, f=0.0591376, fbest=0.0591317\nposition: x[0]=2.39501 x[1]=0.242625 x[2]=0.722882 x[3]=1.425 x[4]=0.788225 x[5]=0.79958 \n\n2021-05-20T11:15:26: Iteration 111: Restarting iteration with increased lambda.\nLambda = 16\n\n2021-05-20T11:15:26: niter=112, f=0.0591327, fbest=0.0591317\nposition: x[0]=2.39614 x[1]=0.242625 x[2]=0.722944 x[3]=1.425 x[4]=0.788031 x[5]=0.79982 \n\n2021-05-20T11:15:26: Iteration 111: Restarting iteration with increased lambda.\nLambda = 64\n\n2021-05-20T11:15:26: niter=112, f=0.0591319, fbest=0.0591317\nposition: x[0]=2.39646 x[1]=0.242627 x[2]=0.722966 x[3]=1.425 x[4]=0.788004 x[5]=0.799885 \n\n2021-05-20T11:15:26: Iteration 111: Restarting iteration with increased lambda.\nLambda = 256\n\n2021-05-20T11:15:26: niter=112, f=0.0591319, fbest=0.0591317\nposition: x[0]=2.39654 x[1]=0.242628 x[2]=0.722973 x[3]=1.425 x[4]=0.788 x[5]=0.799901 \n\n2021-05-20T11:15:26: Iteration 111: Restarting iteration with increased lambda.\nLambda = 1024\n\n2021-05-20T11:15:26: niter=112, f=0.0591317, fbest=0.0591317\nposition: x[0]=2.39657 x[1]=0.242628 x[2]=0.722974 x[3]=1.425 x[4]=0.787999 x[5]=0.799906 \n\n2021-05-20T11:15:26: Iteration 111: Restarting iteration with increased lambda.\nLambda = 4096\n\n2021-05-20T11:15:26: niter=112, f=0.0591317, fbest=0.0591317\nposition: x[0]=2.39657 x[1]=0.242629 x[2]=0.722975 x[3]=1.425 x[4]=0.787999 x[5]=0.799907 \n\n2021-05-20T11:15:26: Iteration 112: Objective function value and parameter change lower than tolerance (2/3). Resetting lambda.\n\n2021-05-20T11:15:26: niter=113, f=0.0591536, fbest=0.0591317\nposition: x[0]=2.39886 x[1]=0.242609 x[2]=0.722376 x[3]=1.425 x[4]=0.787301 x[5]=0.799137 \n\n2021-05-20T11:15:26: Iteration 112: Restarting iteration with increased lambda.\nLambda = 4\n\n2021-05-20T11:15:26: niter=113, f=0.0591286, fbest=0.0591317\nposition: x[0]=2.39695 x[1]=0.24261 x[2]=0.722813 x[3]=1.425 x[4]=0.787785 x[5]=0.799993 \n\n2021-05-20T11:15:26: niter=114, f=0.0591319, fbest=0.0591286\nposition: x[0]=2.39819 x[1]=0.242554 x[2]=0.722325 x[3]=1.425 x[4]=0.788176 x[5]=0.800257 \n\n2021-05-20T11:15:26: Iteration 113: Restarting iteration with increased lambda.\nLambda = 8\n\n2021-05-20T11:15:26: niter=114, f=0.0591259, fbest=0.0591286\nposition: x[0]=2.39712 x[1]=0.242601 x[2]=0.722741 x[3]=1.425 x[4]=0.787883 x[5]=0.800106 \n\n2021-05-20T11:15:26: niter=115, f=0.0594153, fbest=0.0591259\nposition: x[0]=2.39798 x[1]=0.243304 x[2]=0.722937 x[3]=1.425 x[4]=0.788972 x[5]=0.800049 \n\n2021-05-20T11:15:26: Iteration 114: Restarting iteration with increased lambda.\nLambda = 16\n\n2021-05-20T11:15:26: niter=115, f=0.0591453, fbest=0.0591259\nposition: x[0]=2.39724 x[1]=0.2428 x[2]=0.722772 x[3]=1.425 x[4]=0.788054 x[5]=0.800209 \n\n2021-05-20T11:15:26: Iteration 114: Restarting iteration with increased lambda.\nLambda = 64\n\n2021-05-20T11:15:26: niter=115, f=0.0591268, fbest=0.0591259\nposition: x[0]=2.39714 x[1]=0.242653 x[2]=0.722746 x[3]=1.425 x[4]=0.787915 x[5]=0.800144 \n\n2021-05-20T11:15:26: Iteration 114: Restarting iteration with increased lambda.\nLambda = 256\n\n2021-05-20T11:15:26: niter=115, f=0.0591259, fbest=0.0591259\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.722742 x[3]=1.425 x[4]=0.78789 x[5]=0.800117 \n\n2021-05-20T11:15:26: niter=116, f=0.0591256, fbest=0.0591259\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: niter=117, f=0.0591262, fbest=0.0591256\nposition: x[0]=2.39707 x[1]=0.242612 x[2]=0.722732 x[3]=1.42499 x[4]=0.787903 x[5]=0.800106 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 256\n\n2021-05-20T11:15:26: niter=117, f=0.0591258, fbest=0.0591256\nposition: x[0]=2.39711 x[1]=0.242613 x[2]=0.722738 x[3]=1.425 x[4]=0.787898 x[5]=0.800121 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1024\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800125 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4096\n\n2021-05-20T11:15:26: niter=117, f=0.0591257, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 16384\n\n2021-05-20T11:15:26: niter=117, f=0.0591257, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 65536\n\n2021-05-20T11:15:26: niter=117, f=0.0591257, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 262144\n\n2021-05-20T11:15:26: niter=117, f=0.0591257, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.04858e+06\n\n2021-05-20T11:15:26: niter=117, f=0.0591257, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4.1943e+06\n\n2021-05-20T11:15:26: niter=117, f=0.0591257, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.67772e+07\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 6.71089e+07\n\n2021-05-20T11:15:26: niter=117, f=0.0591257, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.68435e+08\n\n2021-05-20T11:15:26: niter=117, f=0.0591257, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.07374e+09\n\n2021-05-20T11:15:26: niter=117, f=0.0591257, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4.29497e+09\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.71799e+10\n\n2021-05-20T11:15:26: niter=117, f=0.0591257, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 6.87195e+10\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.74878e+11\n\n2021-05-20T11:15:26: niter=117, f=0.0591257, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.09951e+12\n\n2021-05-20T11:15:26: niter=117, f=0.0591257, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4.39805e+12\n\n2021-05-20T11:15:26: niter=117, f=0.0591257, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.75922e+13\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 7.03687e+13\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.81475e+14\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.1259e+15\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4.5036e+15\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.80144e+16\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 7.20576e+16\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.8823e+17\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.15292e+18\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4.61169e+18\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.84467e+19\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 7.3787e+19\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.95148e+20\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.18059e+21\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4.72237e+21\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.88895e+22\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 7.55579e+22\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 3.02231e+23\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.20893e+24\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4.8357e+24\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.93428e+25\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 7.73713e+25\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 3.09485e+26\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.23794e+27\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4.95176e+27\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.9807e+28\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 7.92282e+28\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 3.16913e+29\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.26765e+30\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 5.0706e+30\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.02824e+31\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 8.11296e+31\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 3.24519e+32\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.29807e+33\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 5.1923e+33\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.07692e+34\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 8.30767e+34\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 3.32307e+35\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.32923e+36\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 5.31691e+36\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.12676e+37\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 8.50706e+37\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 3.40282e+38\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.36113e+39\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 5.44452e+39\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.17781e+40\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 8.71123e+40\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 3.48449e+41\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.3938e+42\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 5.57519e+42\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.23007e+43\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 8.9203e+43\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 3.56812e+44\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.42725e+45\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 5.70899e+45\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.2836e+46\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 9.13439e+46\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 3.65375e+47\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.4615e+48\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 5.84601e+48\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.3384e+49\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 9.35361e+49\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 3.74144e+50\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.49658e+51\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 5.98631e+51\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.39452e+52\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 9.5781e+52\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 3.83124e+53\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.5325e+54\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 6.12998e+54\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.45199e+55\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 9.80797e+55\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 3.92319e+56\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.56928e+57\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 6.2771e+57\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.51084e+58\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.00434e+59\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4.01735e+59\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.60694e+60\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 6.42775e+60\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.5711e+61\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.02844e+62\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4.11376e+62\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.6455e+63\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 6.58202e+63\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.63281e+64\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.05312e+65\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4.21249e+65\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.685e+66\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 6.73999e+66\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.69599e+67\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.0784e+68\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4.31359e+68\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.72544e+69\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 6.90175e+69\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.7607e+70\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.10428e+71\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4.41712e+71\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.76685e+72\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 7.06739e+72\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.82696e+73\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.13078e+74\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4.52313e+74\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.80925e+75\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 7.23701e+75\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.8948e+76\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.15792e+77\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 4.63168e+77\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.85267e+78\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 7.41069e+78\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 2.96428e+79\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 116: Restarting iteration with increased lambda.\nLambda = 1.18571e+80\n\n2021-05-20T11:15:26: niter=117, f=0.0591256, fbest=0.0591256\nposition: x[0]=2.39712 x[1]=0.242614 x[2]=0.72274 x[3]=1.425 x[4]=0.787897 x[5]=0.800126 \n\n2021-05-20T11:15:26: Iteration 117: Lambda reached maximal value. Terminating.\n\n2021-05-20T11:15:26: Algorithm reached the edge of the parameter domain 189 times.\n\n2021-05-20T11:15:26: Algorithm finished.\nTerminated after 118 of 2000 iterations.\n\n"
plotly::ggplotly(plots$`Erk2-P`)